home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / FreeBSD / options.mk
Encoding:
Text File  |  1995-05-19  |  629 b   |  35 lines

  1. #
  2. # FreeBSD/options.mk --- Part of Makefile for PFE, compiler options for FreeBSD
  3. #
  4.  
  5. # My FreeBSD came with gcc-2.4.5 which dies in floating.c when register
  6. # variables are enabled. Comment out -DUSE_REGS if you use this compiler.
  7.  
  8. PREFIX    = /usr/local
  9. PFELIB    = $(PREFIX)/lib/pfe
  10. PFEHLP    = $(PFELIB)/help
  11.  
  12. SYSTEM    = FreeBSD
  13.  
  14. CC    = gcc -pipe -Wall
  15.  
  16. # for Pentium:
  17. OPTIM    = -O2 -fomit-frame-pointer -DUSE_REGS
  18.  
  19. # for 486:
  20. OPTIM    = -m486 -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
  21.  
  22. DEBUG    = -g
  23.  
  24. CL    = $(CC)
  25. CPP    = $(CC) -E
  26.  
  27. OPTIONS    = -D_BSD -DUSE_TERMCAP
  28. STRIP    = -s
  29. TERM_O    = termunix$o
  30. SYS_O    = unix$o
  31. LFLAGS    = 
  32. LIBS    = -ltermcap -lm
  33.  
  34.  
  35.